home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-449.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  83 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(14737);
  11.  script_version ("$Revision: 1.2 $");
  12.  script_cve_id("CAN-2004-0558");
  13.  
  14.  name["english"] = "RHSA-2004-449: cups";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated cups packages that fix a denial of service vulnerability are now
  21.   available.
  22.  
  23.   The Common UNIX Printing System (CUPS) is a print spooler.
  24.  
  25.   Alvaro Martinez Echevarria reported a bug in the CUPS Internet Printing
  26.   Protocol (IPP) implementation in versions of CUPS prior to 1.1.21. An
  27.   attacker could send a carefully crafted UDP packet to the IPP port which
  28.   could cause CUPS to stop listening to the port and result in a denial of
  29.   service. In order to exploit this bug, an attacker would need to have the
  30.   ability to send a UDP packet to the IPP port (by default 631). The
  31.   Common Vulnerabilities and Exposures project (cve.mitre.org) has assigned
  32.   the name CAN-2004-0558 to this issue.
  33.  
  34.   All users of cups should upgrade to these updated packages, which contain a
  35.   backported patch as well as a fix for a non-exploitable off-by-one bug.
  36.  
  37.  
  38.  
  39.  
  40. Solution : http://rhn.redhat.com/errata/RHSA-2004-449.html
  41. Risk factor : High';
  42.  
  43.  script_description(english:desc["english"]);
  44.  
  45.  summary["english"] = "Check for the version of the cups packages";
  46.  script_summary(english:summary["english"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  51.  family["english"] = "Red Hat Local Security Checks";
  52.  script_family(english:family["english"]);
  53.  
  54.  script_dependencies("ssh_get_info.nasl");
  55.  
  56.  script_require_keys("Host/RedHat/rpm-list");
  57.  exit(0);
  58. }
  59.  
  60. include("rpm.inc");
  61. if ( rpm_check( reference:"cups-1.1.17-13.3.13", release:"RHEL3") )
  62. {
  63.  security_hole(0);
  64.  exit(0);
  65. }
  66. if ( rpm_check( reference:"cups-devel-1.1.17-13.3.13", release:"RHEL3") )
  67. {
  68.  security_hole(0);
  69.  exit(0);
  70. }
  71. if ( rpm_check( reference:"cups-libs-1.1.17-13.3.13", release:"RHEL3") )
  72. {
  73.  security_hole(0);
  74.  exit(0);
  75. }
  76.  
  77. if ( rpm_exists(rpm:"cups-", release:"RHEL3") )
  78. {
  79.  set_kb_item(name:"CAN-2004-0558", value:TRUE);
  80. }
  81.  
  82. set_kb_item(name:"RHSA-2004-449", value:TRUE);
  83.